home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Online / Apache / include / php / regex / regex_extra.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-11-13  |  380 b   |  24 lines

  1. /* do not frame this - we must be able to include this file multiple times */
  2.  
  3. #undef regexec
  4. #undef regerror
  5. #undef regfree
  6. #undef regcomp
  7.  
  8. #if (defined(REGEX) && REGEX == 1) || (!defined(REGEX))
  9.  
  10. #if !(WIN32|WINNT)
  11.  
  12. #ifndef PHP_NO_ALIASES
  13.  
  14. #define regexec php_regexec
  15. #define regerror php_regerror
  16. #define regfree php_regfree
  17. #define regcomp php_regcomp
  18.  
  19. #endif
  20.  
  21. #endif
  22.  
  23. #endif
  24.